home *** CD-ROM | disk | FTP | other *** search
/ Menu Planner / Menu Planner (Ohio Distinctive Software).ISO / mac / Menu Planner CD / savedlog.Dir / 00005.ls < prev    next >
Encoding:
Text File  |  1995-11-07  |  483 b   |  33 lines

  1. on startMovie
  2.   set the keyDownScript to "getReturns"
  3. end
  4.  
  5. on GetReturns
  6.   if the key = RETURN then
  7.     ButtonClick("Yes")
  8.   else
  9.     pass()
  10.   end if
  11. end
  12.  
  13. on ButtonClick theButton
  14.   global gParentWindow
  15.   tell the stage
  16.     SetShouldSaveResult(theButton)
  17.   end tell
  18. end
  19.  
  20. on setSaveFrame theFrame
  21.   global saveFrame
  22.   set saveFrame to theFrame
  23.   go(saveFrame)
  24. end
  25.  
  26. on SetMessage theMessage
  27. end
  28.  
  29. on SetParentWindow theParent
  30.   global gParentWindow
  31.   set gParentWindow to theParent
  32. end
  33.